home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / alib / csup / wb_support / addappicon.c next >
C/C++ Source or Header  |  1994-02-19  |  424b  |  20 lines

  1.  
  2. /* Workbench tag call */
  3.  
  4. #include <exec/types.h>
  5. #include <clib/wb_protos.h>
  6.  
  7. #ifndef HYPER
  8. #define HYPER
  9. #endif
  10.  
  11. typedef struct TagItem     TagItem;
  12.  
  13. struct AppIcon *
  14. HYPER ## AddAppIcon( unsigned long id, unsigned long userdata,
  15.     UBYTE *text, struct MsgPort *msgport, struct FileLock *lock,
  16.     struct DiskObject *diskobj, Tag tag1, ... )
  17. {
  18.     return AddAppIconA(id, userdata, text, msgport, lock, diskobj, (TagItem *)&tag1);
  19. }
  20.